翻訳と辞書
Words near each other
・ Collectin of 43 kDa
・ Collectin of 46 kDa
・ Collecting
・ Collecting duct carcinoma
・ Collecting duct system
・ Collecting practices of the Al-Thani Family
・ Collecting Sunlight
・ Collecting the Kid
・ Collectio Avellana
・ Collectio canonum Hibernensis
・ Collectio canonum quadripartita
・ Collectio canonum Quesnelliana
・ Collectio canonum Wigorniensis
・ Collection
・ Collection (2NE1 album)
Collection (abstract data type)
・ Collection (Agnes album)
・ Collection (artwork)
・ Collection (Arvingarna album)
・ Collection (Dave Grusin album)
・ Collection (horse)
・ Collection (Jason Becker album)
・ Collection (Joe Sample album)
・ Collection (Lee Ritenour album)
・ Collection (Magnus Uggla album)
・ Collection (Men Without Hats album)
・ Collection (Mike Oldfield album)
・ Collection (Oxford colleges)
・ Collection (Praxis album)
・ Collection (racehorse)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Collection (abstract data type) : ウィキペディア英語版
Collection (abstract data type)

In computer science, a collection or container is a grouping of some variable number of data items (possibly zero) that have some shared significance to the problem being solved and need to be operated upon together in some controlled fashion. Generally, the data items will be of the same type or, in languages supporting inheritance, derived from some common ancestor type. A collection is a concept applicable to abstract data types, and does not prescribe a specific implementation as a concrete data structure, though often there is a conventional choice (see Container for type theory discussion).
Some different kinds of collections are lists, sets, multisets, trees and graphs. An enumerated type may be either a list or a set.
Fixed-size arrays (or tables) are usually not considered a collection because they hold a fixed number of data items, although they commonly play a role in the implementation of collections. Variable-size arrays are generally considered collections.
==Linear collections==

Many collections behave as if they are storing data in a line, ordered in some way, with access to one or both ends. The actual data structure implementing such a collection need not be linear—for example, a priority queue is often implemented as a heap, which is a kind of tree. Important linear collections include:
* lists;
* stacks;
* queues;
* priority queues;
* double-ended queues;
* double-ended priority queues.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Collection (abstract data type)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.